Skip to content

Commit

Permalink
Translations sync, fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
ClusterM committed Oct 26, 2017
1 parent 3202bb9 commit f95dfc0
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 10 deletions.
4 changes: 2 additions & 2 deletions Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,6 @@
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("2.0.21.61")]
[assembly: AssemblyFileVersion("2.0.21.61")]
[assembly: AssemblyVersion("2.0.21.72")]
[assembly: AssemblyFileVersion("2.0.21.72")]
[assembly: NeutralResourcesLanguageAttribute("en-US")]
6 changes: 3 additions & 3 deletions Properties/Resources.id-ID.resx
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@
<value>Mendekompres game...</value>
</data>
<data name="Default30games">
<value>xx game orisinal</value>
<value>Game orisinal</value>
</data>
<data name="DeleteElement">
<value>Apakah Anda ingin menghapus "{0}"?</value>
Expand Down Expand Up @@ -197,7 +197,7 @@
<value>Folder baru</value>
</data>
<data name="FolderNameOriginalGames">
<value>xx game orisinal</value>
<value>Game orisinal</value>
</data>
<data name="FolderNameTrashBin">
<value>Recycle Bin</value>
Expand Down Expand Up @@ -425,7 +425,7 @@
<value>Peringatan!</value>
</data>
<data name="Wow">
<value>Wow</value>
<value>Yay!</value>
</data>
<data name="Yes">
<value>Ya</value>
Expand Down
5 changes: 3 additions & 2 deletions WorkerForm.cs
Original file line number Diff line number Diff line change
Expand Up @@ -1035,9 +1035,10 @@ public static void SyncConfig(Dictionary<string, string> Config, bool reboot = f
public static Image TakeScreenshot()
{
var clovershell = MainForm.Clovershell;
var screenshot = new Bitmap(1280, 720, System.Drawing.Imaging.PixelFormat.Format24bppRgb);
var screenshot = new Bitmap(1280, 720, PixelFormat.Format24bppRgb);
var rawStream = new MemoryStream();
clovershell.Execute("hakchi uipause;cat /dev/fb0", null, rawStream, null, 1000, true);
clovershell.ExecuteSimple("hakchi uipause");
clovershell.Execute("cat /dev/fb0", null, rawStream, null, 1000, true);
clovershell.ExecuteSimple("hakchi uiresume");
var raw = rawStream.ToArray();
BitmapData data = screenshot.LockBits(
Expand Down
6 changes: 3 additions & 3 deletions hakchi_gui.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<TreatWarningsAsErrors>False</TreatWarningsAsErrors>
<IntermediateOutputPath>obj\$(Configuration)\</IntermediateOutputPath>
<IsWebBootstrapper>true</IsWebBootstrapper>
<PublishUrl>ftp://clusterrr.com/www/www/soft/hakchi2/</PublishUrl>
<PublishUrl>ftp://ftp.h710140844.nichost.ru/software.clusterrr.com/docs/hakchi2/</PublishUrl>
<Install>true</Install>
<InstallFrom>Web</InstallFrom>
<UpdateEnabled>true</UpdateEnabled>
Expand All @@ -31,8 +31,8 @@
<PublisherName>Alexey %27Cluster%27 Avdyukhin</PublisherName>
<CreateWebPageOnPublish>true</CreateWebPageOnPublish>
<WebPage>index.html</WebPage>
<ApplicationRevision>61</ApplicationRevision>
<ApplicationVersion>2.0.21.61</ApplicationVersion>
<ApplicationRevision>72</ApplicationRevision>
<ApplicationVersion>2.0.21.72</ApplicationVersion>
<UseApplicationTrust>false</UseApplicationTrust>
<CreateDesktopShortcut>true</CreateDesktopShortcut>
<PublishWizardCompleted>true</PublishWizardCompleted>
Expand Down

0 comments on commit f95dfc0

Please sign in to comment.